2903407cea716f7a60591f22c7ea16b9e5459f6c,src/main/java/com/readytalk/swt/widgets/notifications/Bubble.java,Bubble,Bubble,#Control#CustomElementDataProvider#String#boolean#BubbleTag#,112

Before Change



    // Remember to clean up after yourself onDispose.
    borderColor = new Color(getDisplay(), BORDER_COLOR);
    textColor = new Color(getDisplay(), TEXT_COLOR);
    if (useBoldFont) {
      Font font = getDisplay().getSystemFont();
      FontData fontData = font.getFontData()[0];

After Change



    // Remember to clean up after yourself onDispose.
    borderColor = ColorFactory.getColor(getDisplay(), BORDER_COLOR);
    textColor = ColorFactory.getColor(getDisplay(), TEXT_COLOR);
    if (useBoldFont) {
      Font font = getDisplay().getSystemFont();
      FontData fontData = font.getFontData()[0];